home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 2 - Developers' Solutions
/
Delphi 2 Developers' Solutions.iso
/
dds
/
chap07
/
howto02
/
delphi10
/
clients
/
calclook.dpr
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-09-16
|
180 b
|
13 lines
program Calclook;
uses
Forms,
Clients in 'CLIENTS.PAS' {ClientForm};
{$R *.RES}
begin
Application.CreateForm(TClientForm, ClientForm);
Application.Run;
end.